home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
program
/
qlib205.zip
/
QLIB.ZIP
/
SRC
/
QLIB
/
ABORT.ASM
next >
Wrap
Assembly Source File
|
1997-07-09
|
214b
|
17 lines
include qlib.inc
include process.inc
.data
abort_msg db 'Abnormal program termination',13,10,'$'
.code
abort proc
mov edx,offset abort_msg
mov ah,9
int 21h
callp exit,3
abort endp
end